home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / internet / inter / frmtext.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-03-08  |  1.7 KB  |  57 lines

  1. VERSION 2.00
  2. Begin Form frmText 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   1  'Fixed Single
  5.    ClientHeight    =   5355
  6.    ClientLeft      =   1140
  7.    ClientTop       =   1455
  8.    ClientWidth     =   9345
  9.    Height          =   5760
  10.    Icon            =   FRMTEXT.FRX:0000
  11.    Left            =   1080
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    ScaleHeight     =   5355
  15.    ScaleWidth      =   9345
  16.    Top             =   1110
  17.    Width           =   9465
  18.    Begin CommandButton btnDone 
  19.       Caption         =   "Done"
  20.       Height          =   465
  21.       Left            =   7875
  22.       TabIndex        =   1
  23.       Top             =   90
  24.       Width           =   1050
  25.    End
  26.    Begin CSVList vlText 
  27.       AutoRecordCount =   -1  'True
  28.       BorderStyle     =   1  'Fixed Single
  29.       ColDelim        =   "    "
  30.       ColWidth        =   FRMTEXT.FRX:0302
  31.       FontBold        =   0   'False
  32.       FontItalic      =   0   'False
  33.       FontName        =   "MS Sans Serif"
  34.       FontSize        =   8.25
  35.       FontStrikethru  =   0   'False
  36.       FontUnderline   =   0   'False
  37.       Height          =   5190
  38.       HScroll         =   -1  'True
  39.       Left            =   135
  40.       ListCount       =   0
  41.       ListDataFields  =   ""
  42.       ListDataSource  =   ""
  43.       MultiSelect     =   0  'None
  44.       ShadowColor     =   &H00808080&
  45.       TabIndex        =   0
  46.       Top             =   45
  47.       ValueCol        =   -1
  48.       Width           =   7530
  49.    End
  50. Sub btnDone_Click ()
  51.     Hide
  52.     DoEvents
  53. End Sub
  54. Sub vlText_QueryItem (Item As Long, Text As String)
  55.     Text = ItemText(Item + 1).Text
  56. End Sub
  57.